Get TCH Participant
The GetTCHParticipant API enables to fetch the details of TCH participants
Method: POST
{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant
Headers
Name | Value |
---|---|
Content-Type | application/json |
Credential | "Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5" |
Signature | "{{signature}}" |
Example
Payload Parameters
Parameter | Description |
---|---|
processor Mandatory | String Payment channel through which the transaction happens Example – "TCH" |
routingNumber Mandatory | String Routing number of the bank or financial institution Example – "011001276" |
- cURL
- C#
- Go
- NodeJs
curl --location --globoff '{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant' \
--header 'Content-Type: application/json' \
--data '{"processor":"TCH","routingNumber":"011001276"}'
var options = new RestClientOptions("{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""processor"": ""TCH"",
" + "\n" +
@" ""routingNumber"": ""011001276""
" + "\n" +
@"}
" + "\n" +
@"";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"processor": "TCH",`+"
"+`
"routingNumber": "011001276"`+"
"+`
}`+"
"+`
`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/rtp/rpc/TransactionService/GetTCHParticipant',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"processor": "TCH",
"routingNumber": "011001276"
});
req.write(postData);
req.end();
Request Body (Applicable only for TCH)
{
"processor": "TCH",
"routingNumber": "011001276"
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
activationDate | String Date when the participant (bank or financial institution) service was activated in given in DDMMYYYY format Example – "2/21/2023" |
batchID | String Unique batch ID of the participant Example – "E18C27DEC16D" |
connectedStatus | Boolean Connected status of the participant bank Example – true |
connection | String Type of connection Example – "COCC" |
generatedDate | String Date and time when the TCH participant profile is fetched out Example – "2024-01-30T07:00:01Z" |
id | String Unique ID of the generated profile Example – "011001276" |
institutionId | String Routing number of the bank or financial institution Example – "11001276" |
institutionName | String Name of the bank or financial institution Example – "OneUnited Bank" |
messageSetVersion | String Version number of the message set used to fetch the participant profile Example – "2" |
name | String Name of the participant bank whose profile is retrieved Example – "OneUnited Bank" |
onlineStatus | Boolean Online status of the participant bank Example – true |
participantId | String Unique ID of the participant bank Example – "011001276P1" |
services | Array Array (Type of services enabled for the bank) Example – "CRDT","RFRF" |
status | String Current status of the participant bank Example – "NORMAL" |
updatedDate | String Date and time of the participant bank profile was last updated Example – "2024-05-29T14:38:28.297Z" |
Response Body (Applicable only for TCH)
{
"activationDate": "2/21/2023",
"batchID": "E18C27DEC16D",
"connectedStatus": true,
"connection": "COCC",
"generatedDate": "2024-01-30T07:00:01Z",
"id": "011001276",
"institutionId": "11001276",
"institutionName": "OneUnited Bank",
"messageSetVersion": "2",
"name": "OneUnited Bank",
"onlineStatus": true,
"participantId": "011001276P1",
"services": [
"CRDT",
"RFRF"
],
"status": "NORMAL",
"updatedDate": "2024-05-29T14:38:28.297Z"
}